home *** CD-ROM | disk | FTP | other *** search
/ The Arsenal Files 6 / The Arsenal Files 6 (Arsenal Computer).ISO / internet / inet40.zip / INET_MAX.TXT < prev    next >
Text File  |  1996-02-10  |  4KB  |  141 lines

  1.  
  2.  
  3.  
  4. This is the way INET /POST and /REPLY are implemented here at Shangri-La,
  5. (FidoNet 1:321/305.0).   Please note that the following assumes multinode
  6. operation,  if not change the *-%K.Bat file names to suit your operation.
  7.  
  8. This was written for Maximus V-2.02, be sure to change all occurrences of
  9. [menu_cmd xport]message,  to  [menu_cmd msg_xport],  if you are using the
  10. new Maximus V-3.00.
  11.  
  12. A *.msg base is assumed, as well as the following directories, (which may
  13. be changed to ones's preferences).
  14.  
  15. C:\BBS\Max
  16. C:\BBS\Max\Misc
  17. C:\BBS\Max\Misc\Temp-*   or whatever directory DORINFO1.DEF is created in
  18. C:\BBS\Door\INet
  19. C:\BBS\Message\Net
  20.  
  21.  
  22.  
  23. 1.  Change the Maximus message menu as follows than compile  Max.Ctl with
  24. SILT,  (the following is found in the Message Menu section of MENUS.CTL).
  25.  
  26.         Display_File C:\BBS\Max\Misc\Int_Post Normal "Enter message"
  27. %       Msg_Reply                             Normal "Reply to a message"
  28.   NoDsp Display_File C:\BBS\Max\Misc\DoorInfo Normal "R"
  29.         Display_File C:\BBS\Max\Misc\Int_Repl Normal "Reply to a message"
  30.  
  31. Be sure to comment out the original  "Reply to a message",  with  "%"  as
  32. shown above.
  33.  
  34.  
  35.  
  36. 2.  Create INT_POST.MEC in your C:\MAX\MISC directory and compile it with
  37. MECCA.
  38.  
  39. [link]C:\BBS\Max\Misc\DoorInfo
  40. [xtern_dos] C:\BBS\Door\Inet\Post-%K.Bat
  41.  
  42.  
  43.  
  44. 3.  Create POST-%K.Bat, (in my case POST-02.BAT),  in the INET directory.
  45.  
  46. @Echo Off
  47. Cls
  48. C:
  49. CD C:\BBS\Door\INet
  50. Move C:\BBS\Max\Misc\Temp-02\DorInfo1.Def Dorinfo2.Def
  51. INet.Exe /Post /Node2
  52. Erase DorInfo2.Def
  53.  
  54.  
  55.  
  56. 4.  Create INT_REPL.MEC in your C:\MAX\MISC directory and compile it with
  57. MECCA.  This creates a temporary file from the current message,  for more
  58. processing by INET, (the file must be created in the INET directory).
  59.  
  60. [key_poke]=;C:\BBS\Door\INet\MaxTmp%K.Msg
  61. [menu_cmd xport]message
  62. [link]C:\BBS\Max\Misc\DoorInfo
  63. [xtern_dos] C:\BBS\Door\Inet\Reply-%K.Bat
  64.  
  65.  
  66.  
  67. 5.  Create REPLY-%K.Bat, (in my case REPLY-02.BAT), in the INET directory.
  68.  
  69. @Echo Off
  70. Cls
  71. C:
  72. CD C:\BBS\Door\INet
  73. Move C:\BBS\Max\Misc\Temp-02\DorInfo1.Def DorInfo2.Def
  74. Copy MaxTmp02.Msg MsgTmp
  75. INet.Exe /Reply /Node2
  76. Erase DorInfo2.Def
  77. Erase MaxTmp02.Msg
  78.  
  79.  
  80.  
  81. 6.  Modify the  REPLYCHK.CFG  file,  (included with INET),  to suit  your
  82. system.
  83.  
  84.  
  85.  
  86. 7.  Be sure to run REPLYCHK.EXE /N=C:\BBS\MESSAGE\NET every time new mail
  87. is received, (this file is included with INET).
  88.  
  89.  
  90.  
  91. 8.  Be sure  TRANS.EXE  is in the INET directory,  and that you have read
  92. the TRANS.DOC file,  (both files are included with INET in the  MAXIMUS.*
  93. archive).
  94.  
  95.  
  96.  
  97. 9.  This is my  INETCFG.2  for Shangri-La's node 2,  the registration key
  98. has been removed of course.  :-)
  99.  
  100. Sysop Moe Lanza
  101. SysopSecLvl 100
  102. RegistrationKey 0
  103. Origin 1:321/305
  104. Gate 1:1/31
  105. ; MyDomain f305.n321.z1.fidonet.org
  106. Outbound C:\BBS\Message\Net
  107. MsgToLine UUCP
  108. MsgAreaName FidoNet <<<--->>> InterNet Gateway
  109. Flags Private Local
  110. AppendText C:\BBS\Door\INet\Append.Txt
  111. AddressBook
  112. MaxFileDays 180
  113. MaxAddresses 50
  114. PublicBookSecurity 0
  115. Editor 
  116. MsgInfo MsgInf
  117. MsgInfoFormat MsgArea To From Subj
  118. MsgTemp MsgTmp
  119. ExportInfo
  120. LogFilePath C:\BBS\Logs\System
  121. MessageCost 0
  122. ;AllowHandles
  123. ReplyText ReplyAddr
  124. SemaPhore C:\BBS\Flags\Mail_Net.New
  125. MsgBasePath 
  126. MsgBaseType *.Msg
  127. MsgBoard 0
  128.  
  129. For a variety of reasons,   (much too complex and lengthy to be discussed
  130. here), I chose to comment out the "MyDomain" feature, but you may want to
  131. try it.   I also commented out the  "AllowHandles"  feature,  but I don't
  132. think this really needs an explanation :-).
  133.  
  134. I am sure there are better and simpler ways of  accomplishing the  above,
  135. but this works fine for me.  As with any program, be sure to read all the
  136. documetation files included with INET,    (I expect you have read and are
  137. familiar with the ones for Maximus)....   GOOD LUCK!
  138.  
  139.  
  140.  
  141.